home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_server.dpr < prev    next >
Encoding:
Text File  |  2006-03-24  |  2.8 KB  |  66 lines

  1. program ntc_server;
  2. {
  3.     Copyright (C) 2004 - 2006 Andrew Sprott
  4.  
  5.     http://astronomy.crysania.co.uk
  6.     astro@trefach.co.uk
  7.  
  8.     This program is free software; you can redistribute it and/or
  9.     modify it under the terms of the GNU General Public License
  10.     as published by the Free Software Foundation; either version 2
  11.     of the License, or (at your option) any later version.
  12.  
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. }
  22.  
  23. uses
  24.     Forms,
  25.   ntc_server_form in 'ntc_server_form.pas' {scope},
  26.   ntc_server_control in 'ntc_server_control.pas' {scope_control},
  27.   ntc_server_focus in 'ntc_server_focus.pas' {scope_focus},
  28.   ntc_server_info in 'ntc_server_info.pas' {scope_info},
  29.   ntc_server_config in 'ntc_server_config.pas' {scope_config},
  30.   ntc_server_network in 'ntc_server_network.pas' {scope_network},
  31.   ntc_server_comms in 'ntc_server_comms.pas' {scope_comms},
  32.   ntc_server_observer in 'ntc_server_observer.pas' {scope_observer},
  33.   ntc_server_object in 'ntc_server_object.pas',
  34.   ntc_server_button in 'ntc_server_button.pas',
  35.   ntc_server_tracking in 'ntc_server_tracking.pas' {scope_tracking},
  36.   ntc_server_calculus in 'ntc_server_calculus.pas',
  37.   ntc_server_about in 'ntc_server_about.pas' {scope_about},
  38.   ntc_server_search in 'ntc_server_search.pas' {scope_search},
  39.   ntc_server_sun in 'ntc_server_sun.pas' {scope_sun},
  40.   ntc_server_moon in 'ntc_server_moon.pas' {scope_moon},
  41.   ntc_server_planets in 'ntc_server_planets.pas' {scope_planets},
  42.   ntc_server_catalogs in 'ntc_server_catalogs.pas' {scope_catalogs};
  43.  
  44. {$R *.res}
  45.  
  46. begin
  47.     Application.Title := 'Network Server';
  48.   Application.CreateForm(Tscope, scope);
  49.   Application.CreateForm(Tscope_config, scope_config);
  50.   Application.CreateForm(Tscope_comms, scope_comms);
  51.   Application.CreateForm(Tscope_control, scope_control);
  52.   Application.CreateForm(Tscope_focus, scope_focus);
  53.   Application.CreateForm(Tscope_info, scope_info);
  54.   Application.CreateForm(Tscope_observer, scope_observer);
  55.   Application.CreateForm(Tscope_search, scope_search);
  56.   Application.CreateForm(Tscope_network, scope_network);
  57.   Application.CreateForm(Tscope_tracking, scope_tracking);
  58.   Application.CreateForm(Tscope_about, scope_about);
  59.   Application.CreateForm(Tscope_sun, scope_sun);
  60.   Application.CreateForm(Tscope_moon, scope_moon);
  61.   Application.CreateForm(Tscope_planets, scope_planets);
  62.   Application.CreateForm(Tscope_catalogs, scope_catalogs);
  63.   application.Run;
  64. end.
  65.  
  66.